home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ubbthreads_xss.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  68 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5.  
  6. if(description)
  7. {
  8.  script_id(15951);
  9.  script_bugtraq_id(11900);
  10.  script_version("$Revision: 1.1 $");
  11.  name["english"] = "UBB.threads Cross Site Scripting Vulnerabilities";
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote host is running UBB.threads, a bulletin board system written in PHP.
  16.  
  17. There are various cross-site scripting issues in the remote version of this
  18. software. An attacker may exploit them to use the remote website to conduct
  19. attacks against third parties.
  20.  
  21. Solution : Upgrade to the latest version of this software
  22. Risk factor : Medium";
  23.  
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "XSS UBB.threads";
  28.  
  29.  script_summary(english:summary["english"]);
  30.  
  31.  script_category(ACT_GATHER_INFO);
  32.  
  33.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  34.  family["english"] = "CGI abuses";
  35.  script_family(english:family["english"]);
  36.  script_dependencie("http_version.nasl");
  37.  script_require_ports("Services/www", 80);
  38.  exit(0);
  39. }
  40.  
  41. # Check starts here
  42.  
  43. include("http_func.inc");
  44. include("http_keepalive.inc");
  45.  
  46.  
  47. function check(loc)
  48. {
  49.  res = http_keepalive_send_recv(port:port, data:http_get(item:loc + "/calendar.php?Cat=<script>foo</script>", port:port));
  50.  if ( res == NULL ) exit(0);
  51.  if ( "<script>foo</script>" >< res )
  52.     {    
  53.      security_warning(port);
  54.      exit(0);
  55.     }
  56. }
  57.  
  58. port = get_http_port(default:80);
  59.  
  60. if(!get_port_state(port))exit(0);
  61. if ( ! can_host_php(port:port) ) exit(0);
  62.  
  63.  
  64. foreach dir (cgi_dirs()) 
  65.  {
  66.   check(loc:dir);
  67.  }
  68.